home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / demo / helloworld.cs next >
Text File  |  2006-04-02  |  456b  |  14 lines

  1. // ========================================================================
  2. //  HelloWorld.cs
  3. //
  4. //  This module is a program that prints a simple greeting on the screen.
  5. //
  6. // ========================================================================
  7.  
  8. function hello()
  9. // ----------------------------------------------------
  10. //     Entry point for the program.
  11. // ----------------------------------------------------
  12. {
  13.    echo("Hello World");
  14. }